(0) Obligation:

Runtime Complexity TRS:
The TRS R consists of the following rules:

a__from(X) → cons(mark(X), from(s(X)))
a__head(cons(X, XS)) → mark(X)
a__2nd(cons(X, XS)) → a__head(mark(XS))
a__take(0, XS) → nil
a__take(s(N), cons(X, XS)) → cons(mark(X), take(N, XS))
a__sel(0, cons(X, XS)) → mark(X)
a__sel(s(N), cons(X, XS)) → a__sel(mark(N), mark(XS))
mark(from(X)) → a__from(mark(X))
mark(head(X)) → a__head(mark(X))
mark(2nd(X)) → a__2nd(mark(X))
mark(take(X1, X2)) → a__take(mark(X1), mark(X2))
mark(sel(X1, X2)) → a__sel(mark(X1), mark(X2))
mark(cons(X1, X2)) → cons(mark(X1), X2)
mark(s(X)) → s(mark(X))
mark(0) → 0
mark(nil) → nil
a__from(X) → from(X)
a__head(X) → head(X)
a__2nd(X) → 2nd(X)
a__take(X1, X2) → take(X1, X2)
a__sel(X1, X2) → sel(X1, X2)

Rewrite Strategy: INNERMOST

(1) CpxTrsToCpxRelTrsProof (BOTH BOUNDS(ID, ID) transformation)

Transformed TRS to relative TRS where S is empty.

(2) Obligation:

Runtime Complexity Relative TRS:
The TRS R consists of the following rules:

a__from(X) → cons(mark(X), from(s(X)))
a__head(cons(X, XS)) → mark(X)
a__2nd(cons(X, XS)) → a__head(mark(XS))
a__take(0, XS) → nil
a__take(s(N), cons(X, XS)) → cons(mark(X), take(N, XS))
a__sel(0, cons(X, XS)) → mark(X)
a__sel(s(N), cons(X, XS)) → a__sel(mark(N), mark(XS))
mark(from(X)) → a__from(mark(X))
mark(head(X)) → a__head(mark(X))
mark(2nd(X)) → a__2nd(mark(X))
mark(take(X1, X2)) → a__take(mark(X1), mark(X2))
mark(sel(X1, X2)) → a__sel(mark(X1), mark(X2))
mark(cons(X1, X2)) → cons(mark(X1), X2)
mark(s(X)) → s(mark(X))
mark(0) → 0
mark(nil) → nil
a__from(X) → from(X)
a__head(X) → head(X)
a__2nd(X) → 2nd(X)
a__take(X1, X2) → take(X1, X2)
a__sel(X1, X2) → sel(X1, X2)

S is empty.
Rewrite Strategy: INNERMOST

(3) DecreasingLoopProof (EQUIVALENT transformation)

The following loop(s) give(s) rise to the lower bound Ω(n1):
The rewrite sequence
a__2nd(cons(X, 2nd(cons(X120978_3, X220979_3)))) →+ a__head(a__2nd(cons(mark(X120978_3), X220979_3)))
gives rise to a decreasing loop by considering the right hand sides subterm at position [0].
The pumping substitution is [X220979_3 / 2nd(cons(X120978_3, X220979_3))].
The result substitution is [X / mark(X120978_3)].

(4) BOUNDS(n^1, INF)